home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 11 / CU Amiga Magazine's Super CD-ROM 11 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-06].iso / cucd / programming / stormc-demo / rexx / phxass.srx < prev    next >
Text File  |  1996-11-10  |  721b  |  27 lines

  1. /* 
  2.     phxass.srx
  3.     
  4.     Use PhxAss for your assembler files
  5.         
  6.     © 1996 HAAGE & PARTNER GmbH
  7.     
  8.     $VER phxass.srx 1.0 (4.11.96)
  9.     
  10.     Calling the phxass is directly supported by the StormShell environment
  11.     but if you need other command line arguments you can use this script.
  12.  
  13.     Scripts for assemblers should never set an object file name, this is always
  14.     set by the StormShell itself.
  15.     
  16. */
  17.  
  18. /* Don't forget the point '.' at the end                         \/   */
  19. PARSE ARG '"' filename '"' '"' projectname '"' '"' objectname '"' .
  20.  
  21. SAY ""
  22. SAY "PhxAss Script ©1996 HAAGE & PARTNER GmbH"
  23. SAY "Assemble "||filename||" to object "||objectname||"."
  24.  
  25. /* compile */
  26. ADDRESS COMMAND "StormC:StormSYS/PhxAss "||filename||" TO "||objectname
  27.